<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(./Pad.css) screen and (max-width: 64em);
@import url(./Mobile.css) screen and (max-width: 40em);
/*
* Ã¦Â&nbsp;â€¡Ã¨Â¯â€&nbsp;
*/
body:after {
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: 'Pc';
}
@media only screen and (max-width: 64em) {
  /*
* Ã¦Â&nbsp;â€¡Ã¨Â¯â€&nbsp;
*/
  body:after {
    content: 'Pad';
  }
}
@media only screen and (max-width: 40em) {
  /*
* Ã¦Â&nbsp;â€¡Ã¨Â¯â€&nbsp;
*/
  body:after {
    content: 'Mobile';
  }
}
</pre></body></html>